dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OraclePackage Class / ExecuteProcedure Method / ExecuteProcedure(String,Type,Object[]) Method
The name of the stored procedure or function.
Determines whether to invoke a procedure or a function.
Parameters to be passed to the procedure as arguments.

In This Topic
    ExecuteProcedure(String,Type,Object[]) Method
    In This Topic
    Executes stored procedure or function.
    Syntax
    'Declaration
     
    Public Overloads Function ExecuteProcedure( _
       ByVal name As String, _
       ByVal resultType As Type, _
       ByVal ParamArray parameters() As Object _
    ) As Object
    public object ExecuteProcedure( 
       string name,
       Type resultType,
       params object[] parameters
    )

    Parameters

    name
    The name of the stored procedure or function.
    resultType
    Determines whether to invoke a procedure or a function.
    parameters
    Parameters to be passed to the procedure as arguments.

    Return Value

    Return value of the stored function.
    Remarks
    If resultType is null, ExecuteProcedure method tries to execute a stored procedure; otherwise it invokes stored function.
    See Also